📃Programming: Python
https://gyazo.com/9868e87cc598438e954da9148ec6248d
やってみたい
pyxel
シンプルな2Dゲームエンジン
pythonで動く
pyxelのインストール方法
python3.7以上をインストールする
https://www.python.org/downloads/
コマンドプロンプトで以下のコマンドを打つ
py -m pip install -U pyxel
py
pythonを実行する
-m
モジュールを実行
https://nade-nadegata.hatenablog.jp/entry/2018/12/31/093750
Pythonは-mオプションを付けてpythonを実行するとモジュールを実行してくれます。
このオプションは$PYHTONPATHで設定されているモジュールの配置場所や、
設定ファイルなどで設定されているsys.pathの場所にあるモジュールを実行できます。
pip
python付属のソフトウェアマネージャ?
install
pipのインストールコマンド
-U
https://docs.python.org/ja/3/using/cmdline.html
Force the stdout and stderr streams to be unbuffered. This option has no effect on the stdin stream.
stdoutおよびstderrストリームを強制的にバッファ解除します。このオプションは、stdinストリームには影響しません。
よくわからない
pyxel
インストールソフト名
関連:🧊3DCG: Blender Python